2.3.3. Response
Field | Description | Type |
status | success | |
order_id | Order ID | integer |
order_status | Order status. Possible values: “new”, “completed”, “under_review”, “validation_error”, “pre_prod” | string |
notes | Additional notes | string |
comments | Comments | string |
reject_reason | Rejection reason (if status is 'validation_error') | string |
reject_reason_notes | Additional rejection notes (if status is 'validation_error') | string |
Exit codes:
200 - successful
Code structure
{
"status": "success",
"order_id": "Order ID", // integer
"order_status": "Order status", // string (Possible values: “new”, “completed”, “under_review”, “validation_error”, “pre_prod”)
"notes": "Additional notes", // string
"comments": "Comments", // string
"reject_reason": "Rejection reason (if status is 'validation_error')", // string
"reject_reason_notes": "Additional rejection notes (if status is 'validation_error')" // string
}